home *** CD-ROM | disk | FTP | other *** search
- // This sample demonstrates the commands that write text to a file
- LogError("This line will go into an error log.")
- LogEvent("This line will go into the system event log.")
- LogSystem("test.log",DISK_C_FREE)
- LogToFile("test.log","This is a test log entry")
- WriteLineToFile("test.log","This line was entered by the command WriteLineToFile")
- WriteToFile("test.log","This line was added by the command WriteToFile")
- MessageBox("Macro has finished. Check the log files.")
-